home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ccdl150l.zip / IO / SCANF.C < prev    next >
C/C++ Source or Header  |  1996-08-08  |  252b  |  13 lines

  1. #include <stdio.h>
  2. #include <time.h>
  3. #include <stdlib.h>
  4. #include <string.h>
  5. #include <libp.h>
  6.  
  7. int scanf(const char *format, ...)
  8. {
  9.     char buf[512];
  10.     if (!gets(buf))
  11.         return 0;
  12.     return _scanf(buf,format,((char *)&format+sizeof(char *)));
  13. }